home *** CD-ROM | disk | FTP | other *** search
- class classes.fx.GunExplo
- {
- var id;
- var x;
- var y;
- var scale;
- var clip;
- var Name = "gunExplo";
- function GunExplo(px, py, pscale, pid)
- {
- this.id = pid;
- this.x = px;
- this.y = py;
- this.scale = pscale;
- _root.d = _root.d + 1;
- this.clip = _root.attachMovie("gunExplo","gunExplo" + this.id + "Clip",_root.d + 20000);
- this.clip._x = this.x;
- this.clip._y = this.y;
- this.clip._xscale = this.scale;
- this.clip._yscale = this.scale;
- }
- function main()
- {
- if(this.clip.end)
- {
- _root.removeFX("gunExplo" + this.id);
- }
- }
- }
-